home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Utilities
/
Programming
/
EnterAct 3.5
/
Drag_on Modules
/
hAWK programs
/
$Uppercase
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-05-11
|
298 b
|
16 lines
|
[
TEXT/KEEN
]
#Change first letter of each word (field) to uppercase
BEGIN {u = "abcdefghijklmnopqrstuvwxyz"
U = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
{for ( k = 1; k <= NF; k++)
{
first = substr($k,1,1)
if (ind = index(u,first))
{
First = substr(U, ind, 1)
sub(/^./, First, $k)
}
}
print
}